home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Borland Plateform / TURBO PASCAL 1.5 for WIN / RWDEMOS.PAK / BITBTNCO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-06-08  |  717 b   |  32 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Pascal for Windows                     }
  4. {   Demo constant unit                           }
  5. {   Copyright (c) 1992 by Borland International  }
  6. {                                                }
  7. {************************************************}
  8.  
  9. unit bitbtnco;
  10.  
  11. interface
  12.  
  13. const
  14.  
  15.     idButtonStyle    =    100;
  16.     idCaption    =    100;
  17.     idControlId    =    101;
  18.     idTabStop    =    102;
  19.     idDisabled    =    103;
  20.     idGroup         =    104;
  21.     idDefaultButton    =    105;
  22.     idPushButton    =    106;
  23.     btDisableBits   =       100;
  24.     btDefBits    =    101;
  25.     btUndefBits    =    102;
  26.     crDefCurs    =    100;
  27.     crUndefCurs    =    101;
  28.  
  29. implementation
  30.  
  31. end.
  32.